@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Regular.woff2') format('woff2'),
       url('../font/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}


img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Slideshow */
.slideshow-container {
  max-width: 100%;
  margin: 0 auto 50px;
  position: relative;
  padding-top: 80px;
  filter: grayscale(100%);
}

.mySlides img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* About Section */
.about-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
  margin: 20px auto;
  padding: 30px 20px 40px;
  max-width: 1100px;
  gap: 20px;
  line-height: 1.7;
  margin-bottom: 100px;
}

.about-img {
  flex: 1 1 320px;
  overflow: hidden;
  border-radius: 12px;
  text-align: center;
}

.about-img img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 12px;
}

.about-img img:hover {
  transform: scale(1.01);
  filter: grayscale(0%);
}

.about-content {
  flex: 2 1 600px;
  padding-left: 20px;
}

.about-title a {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.about-title a:hover {
  color: #f37021;
}

.about-description {
  margin-top: 5px;
  color: #444;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}


#more p {
  margin-top: 15px;
  color: #444;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

#more {
  display: none;
  margin-top: 20px;
}

#more h2 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-left: 10px;
}


#more h3 {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-left: 10px;
}

#more ol {
  margin: 15px 0 20px 20px;
  padding-left: 15px;
}

#more li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.item-hindi {
  font-weight: 600;
  color: #2c3e50;
}

.item-english {
  color: #555;
  font-style: italic;
  margin-left: 5px;
}

button#myBtn {
  background-color: #171717;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

button#myBtn:hover {
  background-color: #f37021;
  transform: scale(1.01);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-slide {
    flex-direction: column-reverse;
    padding: 40px 20px;
  }
  .about-content {
    padding-left: 0;
  }
  .about-title a {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .about-title a {
    font-size: 20px;
  }
  button#myBtn {
    width: 100%;
  }
  .about-slide {
    padding: 25px 20px;
    margin-top: -30px;
  }
}
